Contact us

AL MANAMA is ready to provide the right solution according to your needs

Get in touch

Sociis natoque vehicula placerat sem efficitur malesuada volutpat elit sollicitudin.

Head Office

Jalan Cempaka Wangi No 22, Ajman

Email Us

almanama.ae.tld

Call Us

Phone: +971 4 0002 2012
Fax: +971 4 0002 2013

Send us a message

isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->Username = 'designersinan706@gmil.com'; // Replace with your Gmail $mail->Password = 'your-email-password'; // Replace with your Gmail password or App Password $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; // Recipient and sender $mail->setFrom('your-email@gmail.com', 'Your Website'); $mail->addAddress('designersinan706@gmail.com'); // Your receiving email // Email content $mail->isHTML(true); $mail->Subject = 'New Contact Form Submission: ' . $subject; $mail->Body = "

New message from contact form:

Name: $name

Company: $company

Email: $email

Phone: $phone

Subject: $subject

Message:
$message

"; // Send the email $mail->send(); echo "Message has been sent successfully!"; } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } }